home *** CD-ROM | disk | FTP | other *** search
- REM CHECKUP.BAT
- REM Copyright (c) 1988 Richard B. Levin
- REM All Rights Reserved
- REM
- REM this batch file maintains clean copies of checkup and .xup files
- REM
- REM rename to autoexec.bat and store on a clean floppy disk
- REM (see CHECKUP.DOC for more info on creating clean floppy disks)
- REM
- REM make sure we're on the root directory of the hard disk
- REM (substitute the disk drive letter of your choice)
- REM
- C:
- CD \
- REM
- REM copy checkup and any .xup files from a: drive to hard disk
- REM
- COPY A:\CHECKUP.EXE
- COPY A:\*.XUP
- REM
- REM check files
- REM (substitute your list of input files here)
- REM
- CHECKUP IBMBIO.COM
- CHECKUP IBMDOS.COM
- CHECKUP COMMAND.COM
- REM
- REM copy .xup files to the clean floppy disk
- REM
- COPY *.XUP A:\
- REM
- REM delete checkup and .xup files from the hard disk
- REM
- DEL CHECKUP.EXE
- DEL *.XUP
- REM
- REM End of CHECKUP.BAT